crypto/internal/fips140/sha3.Digest.dsbyte (field)

16 uses

	crypto/internal/fips140/sha3 (current package)
		hashes.go#L9: 	return &Digest{rate: rateK448, outputLen: 28, dsbyte: dsbyteSHA3}
		hashes.go#L14: 	return &Digest{rate: rateK512, outputLen: 32, dsbyte: dsbyteSHA3}
		hashes.go#L19: 	return &Digest{rate: rateK768, outputLen: 48, dsbyte: dsbyteSHA3}
		hashes.go#L24: 	return &Digest{rate: rateK1024, outputLen: 64, dsbyte: dsbyteSHA3}
		hashes.go#L52: 	return &Digest{rate: rateK512, outputLen: 32, dsbyte: dsbyteKeccak}
		hashes.go#L58: 	return &Digest{rate: rateK1024, outputLen: 64, dsbyte: dsbyteKeccak}
		sha3.go#L49: 	dsbyte byte
		sha3.go#L89: 	d.a[d.n] ^= d.dsbyte
		sha3.go#L180: 	switch d.dsbyte {
		sha3.go#L207: 	case magic == magicSHA3 && d.dsbyte == dsbyteSHA3:
		sha3.go#L208: 	case magic == magicShake && d.dsbyte == dsbyteShake:
		sha3.go#L209: 	case magic == magicCShake && d.dsbyte == dsbyteCShake:
		sha3.go#L210: 	case magic == magicKeccak && d.dsbyte == dsbyteKeccak:
		shake.go#L51: 	c := &SHAKE{d: Digest{rate: rate, outputLen: outputLen, dsbyte: dsbyte}}
		shake.go#L121: 	return &SHAKE{d: Digest{rate: rateK256, outputLen: 32, dsbyte: dsbyteShake}}
		shake.go#L126: 	return &SHAKE{d: Digest{rate: rateK512, outputLen: 64, dsbyte: dsbyteShake}}